/*CSS Estrutural (galeria.html)*/

body {
	font-family: 'Montserrat', sans-serif;
}

header {
	background: linear-gradient(to right, #0000FF, #00FFFF, #800080, #FF69B4, #FF0000, #FFFF00, #FFA500);
	padding: 0px 0;
    height: 50px;
	margin-left: 0;
	display: flex;
	align-items: center;
}

.social_container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	width: auto;
    height: 50px;
	border: 5px solid #000000;
	background-color: #000000;
	padding-right: 50px;
}

.social_container li {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 15px;
	display: flex;
    list-style: none;
	margin: 5px 0;
	padding: 5px;
	animation: mudarTamanho 20s infinite;
}

.social_icons {
    display: flex;
    align-items: center;
	justify-content: flex-end;
	margin-left: 20px;
	background-color: #000000;
    padding: 0px 5px;
    transform: translateY(-6px);
}

.icon_link {
    width: 40px;
    height: 30px;
    display: flex;              
    align-items: center;        
    justify-content: center; 
    margin-left: 10px;
    margin-top: 5px;
    padding: 10px;
}   

.icon_link img {
    height: 30px;
	width: 30px; 
	border-radius: 20px;
	background-color: #000000;
	display: block;
}

.icon_link img:hover {
	font-style: italic;
	color: #FF0000;
} 


nav {
    padding: 0 20px;
    margin-right: 40px;
	margin-left: 40px;
    width: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav_img {
    width: 50px;
    height: 45px;
    margin-right: 50px; 
	border-radius: 30px;
}

nav ul {
    display: flex; 
    align-items: center; 
    list-style: none; 
    padding: 0;
    margin: 0;
}

nav li {
    margin-right: 30px; 
}

nav a {
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    padding: 10px 10px 5px 10px;
    text-decoration: none;   
	position: relative;
}

@keyframes mudarTamanho {
    0% {
        font-size: 5px; 
    }
    50% {
        font-size: 10px; 
    }
    100% {
        font-size: 15px; 
    }
}

nav a::after {
    content: '';
    display: block;
    width: 100%; 
    height: 2px; 
    background-color: #FFFFFF; 
    position: absolute;
    bottom: 0; 
    left: 0; 
    transform: scaleX(0); 
    transition: transform 0.3s ease; 
}


nav a:hover::after {
    transform: scaleX(1); 
}


nav a:hover {
	font-style: italic;
	color: yellow;
} 




/* CSS Main Galeria.html*/


/*.wrapper {
    text-align: center;
    margin: 20px;
  }*/

.wrapper {
    text-align: center;
    margin: 20px;
	width: 100%;
    overflow: hidden;
    height: auto;
}
  
.wrapper_titulo {
    margin-bottom: 30px;
    font-size: 35px;
	font-weight: bold;
	color: #FF0000;
	text-shadow: 3px 3px 2px white;
	text-align: center;
	padding: 40px 40px 60px 40px;
  }

  /* Carrossel principal - corrigido para responsividade */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    overflow: hidden;
    display: block;
}

/*.carousel-container {
    position: relative;
    width: 550px; 
    height: 550px; 
    margin: 0 auto;
    overflow: hidden;
    display: block;
  }Antigo*/
  
/* Lista de itens do carrossel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 0;
    margin: 0;
    list-style: none;
}
  
/*#carousel li {
    min-width: 550px; 
    height: 550px;   
    display: flex;
    justify-content: center;
    align-items: center;
}*/

.carousel li {
    min-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Setas de navegação */
.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
  
.nav-arrows a {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.nav-arrows a:hover {
    background: rgba(255, 255, 255, 1);
} 
  
/* Galeria de miniaturas */
.galeria {
    list-style-type: none;
    text-align: center;
    padding: 10px;
    position: relative;
}

.galeria_titulo {
	font-size: 35px;
	font-weight: bold;
	color: #FF0000;
	text-shadow: 3px 3px 2px white;
	text-align: center;
	padding: 40px 40px 60px 40px;
}


.galeria li {
    display: inline-block;
    width: 30%; 
    margin: 10px; 
	padding: 5px 5px 15px 5px;
	border-radius: 10px;
}

.galeria li:hover {
	transform: scale(1.5);   
	z-index: 1;     
}

.galeria_descricao {
	font-size: 10px;
	font-weight: bold;
	color: #e34444;	
}

.galeria_video {
	list-style-type: none;
    padding: 3em 0;
    text-align: center;
    position: relative;
}

/* CSS Rodape do (galeria.html)*/

footer {
    width: 100%;                
    height: 80px;               
    display: flex;              
    justify-content: center;    
    align-items: center;        
    background: #888888;
}

.rodape {
    display: flex;             
    align-items: center;        
    text-align: left;           
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.rodape img.logo {
    width: 70px;               
    height: 70px;               
    margin-right: 20px;         
}

.rodape-texto {
    display: flex;
    flex-direction: column;    
    justify-content: center;    
    line-height: 1.5;           
}

.rodape-texto p {
    margin: 0; 
                     
}

.rodape a {
    color: #FFAAAA;            
    text-decoration: none;      
    font-weight: bold;
}

.rodape a:hover {
    text-decoration: underline; 
}


/*Responsividade - galeria.html*/

/* Tablets */
@media (max-width: 1024px) {
    header {
        height: auto;
        min-height: 50px;
    }

    nav {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav_img {
        margin: 0 0 10px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 5px 0;
    }

    .main-wrapper {
        padding: 10px;
    }

    .main-wrapper img {
        width: 100vw;
        height: auto;
        max-width: 100vw;
        max-height: 60vw;
        object-fit: cover;
    }

     .nav-arrows a {
        font-size: 1.2rem;
        padding: 0.3rem 0.6rem;
    }



    .carousel-container {
        width: 80%;
        max-width: 80%;
        aspect-ratio: 1/1;
        height: auto;
        align-items: center;
        margin: 0px 50px 0px 50px;
    }

    .carousel li {
        min-width: 100%;
        height: auto;
    }
    .galeria li {
        width: 45%;
        min-width: 140px;
    }
    .wrapper_titulo {
        font-size: 2rem;
        padding: 30px 10px 40px 10px;
    }
}

/* Celulares */
@media (max-width: 600px) {
     header {
        height: auto;
        min-height: 50px;
    }
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    .nav_img {
        width: 56px;
        height: 52px;
        margin: 0 0 10px 0;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 5px 0;
    }
    .main-wrapper {
        padding: 10px;
    }

    .carousel-container {
        width: 80%;
        max-width: 80%;
        aspect-ratio: 1/1;
        height: auto;
        align-items: center;
        margin: 0px 30px 0px 20px;
    }
    .carousel li {
        min-width: 100%;
        height: auto;
    }
    .main-wrapper img {
        width: 100vw;
        height: auto;
        max-width: 100vw;
        max-height: 60vw;
        object-fit: cover;
    }
    .nav-arrows a {
        font-size: 1.2rem;
        padding: 0.3rem 0.6rem;
    }

    .galeria li {
        width: 55%; /*troquei de 90% para 55% para ajustar a responsividade*/
        min-width: 150px;
        /*margin: 10px auto;
        display: block;*/
    }

    .galeria_video video{
        width: 60%;
        height: 60%;
    }

    .wrapper_titulo {
        font-size: 1.2rem;
        padding: 20px 0 20px 0;
    }
    .social_container {
        width: 100%; 
        max-width: 599px; 
        margin: 0 auto;
        padding: 5px;
        text-align: center;
    }
    .icon_link {
        width: 25px; 
        height: 25px; 
    }
}

/* Ajustes gerais para header, social container, galeria de vídeos, footer e carrossel */
@media (max-width: 1243px) {
    header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    nav li {
        margin: 10px 0;
    }
    nav a {
        font-size: 16px;
    }
    .nav_img {
        width: 80px;
        height: 70px;
        margin: 0 auto;
    }
    .social_container {
        width: 100%; 
        max-width: 1243px; 
        margin: 0 auto; 
        padding: 10px;
        text-align: center;
        border: 5px solid #000000;
    }
    .social_icons {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap; 
    }
    .icon_link {
        margin: 5px; 
        width: 30px; 
        height: 30px; 
    }
    .galeria_video {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .galeria_video li {
        width: auto;
        margin: 10px 0;
    }
    .galeria iframe {
        width: auto;
        height: auto;
    }
    .rodape {
        color: #FFFFFF;
        background: #888888;
        font-size: 10px;
        font-weight: bold;
        margin: 0px 0 0;
        text-align: center;
        display: flex; 
        align-items: center; 
        justify-content: center;
    }
    .rodape img.logo {
        width: 60px;
        height: 50px;
    }
}

/* CSS do galeria.html - desenvolvido por Patrícia Sousa*/

 